{ "cells": [ { "cell_type": "markdown", "id": "6ba7382a", "metadata": {}, "source": [ "# More customize" ] }, { "cell_type": "markdown", "id": "255ad215", "metadata": {}, "source": [ "## Online / offline\n", "***\n", "\n", "### ver. 1.1.0.*\n", "\n", "- **online** \n", "```python\n", ">>> from PyJEM import detector\n", ">>> detector.online()\n", "```\n", "- **offline**\n", "```python\n", ">>> from PyJEM import detector\n", ">>> detector.offline()\n", "```\n", "\n", "### Other version\n", "\n", "- **online**\n", "```python\n", ">>> from PyJEM import detector\n", "```\n", "\n", "- **offline**\n", "```python\n", ">>> from PyJEM.offline import detector\n", "```" ] }, { "cell_type": "markdown", "id": "2c007251", "metadata": {}, "source": [ "## Change IP address\n", "***\n", "\n", "Change ipaddress when PyJEM is configured outside of TEMPC.\n", "\n", "### TEM3\n", "There is no way to change it.\n", "\n", "### Other package\n", "Take the detector package as an example.\n", "```python\n", ">>> from PyJEM import detector\n", ">>> detector.set_ip(\"127.0.0.1\")\n", "```\n" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.8.10" } }, "nbformat": 4, "nbformat_minor": 5 }